home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-eplain-archive / 000021_kb@cs.umb.edu_Thu Aug 11 08:24:38 1994.msg < prev    next >
Internet Message Format  |  1995-01-08  |  1KB

  1. Received: from terminus.cs.umb.edu by cs.umb.edu with SMTP id AA20451
  2.   (5.65c/IDA-1.4.4 for <tex-eplain@cs.umb.edu>); Thu, 11 Aug 1994 12:24:41 -0400
  3. Received: by terminus.cs.umb.edu id AA00362
  4.   (5.65c/IDA-1.4.4 for tex-eplain@cs.umb.edu); Thu, 11 Aug 1994 12:24:38 -0400
  5. Date: Thu, 11 Aug 1994 12:24:38 -0400
  6. From: "K. Berry" <kb@cs.umb.edu>
  7. Message-Id: <199408111624.AA00362@terminus.cs.umb.edu>
  8. To: adam@symcom.math.uiuc.edu
  9. Cc: tex-eplain@cs.umb.edu
  10. Subject: Re: setting margins and \magnification
  11.  
  12.     In your margin setting macros you use relative and not absolute
  13.     dimensions. Thus, if I say something like 
  14.  
  15. The margin macros are supposed to be absolute. \paperwidth and
  16. \paperheight have to be defined correctly, though. And of course if
  17. you yourself have assigned to \hoffset, that will change things
  18. accordingly.
  19.  
  20. All the \leftmargin macro does is:
  21.  
  22.   \hoffset = \dimen@ \advance\hoffset by -1in
  23.   \advance\dimen2 by -\hoffset    % Compute the change in \hoffset.
  24.   \advance\hsize by \dimen2    % Change type area accordingly.
  25.  
  26. (Recall that the default margins in TeX are 1in and 1in; an \hoffset of
  27. 0 corresponds to a left margin of one inch.)
  28.  
  29.  
  30. However, I'm not sure what effect the `true' will have.
  31. I've never really understood `true', to tell you the truth.